home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / string / strspn.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  271b  |  21 lines

  1.  
  2. /*
  3.  *  STRSPN.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <string.h>
  9.  
  10. size_t
  11. strspn(str, toks)
  12. const char *str;
  13. const char *toks;
  14. {
  15.     const char *ptr;
  16.  
  17.     for (ptr = str; *ptr && strchr(toks, *ptr); ++ptr);
  18.     return(ptr - str);
  19. }
  20.  
  21.